home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / fax / src / port / isc / mkstemp.c < prev    next >
C/C++ Source or Header  |  1994-08-01  |  131b  |  10 lines

  1. #include <fcntl.h>
  2.  
  3. int
  4. mkstemp(char* fpat)
  5. {
  6.     extern char *mktemp();
  7.  
  8.     return (open(mktemp(fpat), O_RDWR|O_CREAT, 0644));
  9. }
  10.